home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
blankery
/
blanker
/
source
/
blankers
/
puzzle
/
defaults.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-01
|
372b
|
20 lines
#include <exec/types.h>
#include <intuition/intuition.h>
#include "/defs.h"
#include "/utility.h"
struct pPrefObject {
ULONG Horiz, Vert;
};
VOID defaults( struct bMessage *Msg )
{
static struct pPrefObject pPO = { 6, 6 };
Msg->bm_Mod = getTopScreenMode();
Msg->bm_Dep = getTopScreenDepth();
Msg->bm_Info = "Puzzle Module";
Msg->bm_Data = ( UBYTE * )( &pPO );
}